// // Copyright (c) 2009 All Right Reserved // // vl // // 2009-01-01 // Contains ... using System; using JetBrains.Annotations; namespace LargoCommon.Music { /// The tonality of the key signature (major or minor). [Serializable] public enum TonalityGenus { #region Major/Minor /// Key is major. Major = 0, /// Key is minor. [UsedImplicitly] Minor = 1 #endregion } }